ocr: olymorpnism Polymorphism in C++ means that you can have many mplementations of a particular function defined in a class, yet only one of these definitions will actually be used when the program is complied. To use this reature in C++, there is the keyword Dirtual". Dirtual runctions offer derived classes ditterent interpretations of a Daselabstract) class runction. The now redetined runction will "over- ride" the base class runction. Virtual runctions cannot be global functions in the program.